home *** CD-ROM | disk | FTP | other *** search
/ Postcard CD: Niagara Parks / Postcard CD: Niagara Parks (2004).iso / mac / SS.dxr / Internal_6.ls < prev    next >
Encoding:
Text File  |  2001-12-19  |  372 b   |  21 lines

  1. on exitFrame me
  2.   global playMode
  3.   if playMode = 1 then
  4.     if the timer > 147 then
  5.       go(the frame + 1)
  6.     else
  7.       go(the frame)
  8.     end if
  9.   else
  10.     if playMode = 0 then
  11.       if the timer > 1200 then
  12.         sprite(100).member = member(16, 1)
  13.         go(the frame + 1)
  14.         playMode = 1
  15.       else
  16.         go(the frame)
  17.       end if
  18.     end if
  19.   end if
  20. end
  21.